BWimage
 
Component BWimage
Black & White image
Component Level: High
Category: SW-Data
Typical Usage:
(Examples of a typical usage of the component in user code. For more information please see the page Component Code Typical Usage.)

Assume the component name "BWim1".

This component can be used in several cases. Following example is one of them.

 MAIN.C

PIMAGE img;	 /* PIMAGE is defined in PE_Types.h */
uint16_t size;

void main(void)
{
  /* Get pointer to a structure describing an image */
  img = BWim1_GetImage();   
  
  size = img->size;         /* Get size of an image */
  ... 
  
}